From 0549b0083435667e36d678d6c52feb796f05fd92 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Sat, 10 Mar 2007 20:18:17 +0000 Subject: [PATCH] Remove some excessive debug logging. Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendNode.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/python/xen/xend/XendNode.py b/tools/python/xen/xend/XendNode.py index 5976d80f39..3b261d8722 100644 --- a/tools/python/xen/xend/XendNode.py +++ b/tools/python/xen/xend/XendNode.py @@ -95,15 +95,12 @@ class XendNode: self.cpus[u] = {'uuid': u, 'number': i } for u in self.cpus.keys(): - log.error(self.cpus[u]) number = self.cpus[u]['number'] # We can run off the end of the cpuinfo list if domain0 does not # have #vcpus == #pcpus. In that case we just replicate one that's # in the hash table. if not cpuinfo.has_key(number): number = cpuinfo.keys()[0] - log.error(number) - log.error(cpuinfo) if arch.type == "x86": self.cpus[u].update( { 'host' : self.uuid, -- 2.30.2